home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 165 / XENIATGM165.ISO / cddata / upframe.cxt / 00028_silver_amp.swf / scripts / DefineButton2_23 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2003-03-06  |  245 b   |  17 lines

  1. on(release){
  2.    i = 1;
  3.    while(i <= 5)
  4.    {
  5.       if(i != my)
  6.       {
  7.          _parent["c" + i].gotoAndStop(1);
  8.       }
  9.       else
  10.       {
  11.          gotoAndStop(2);
  12.       }
  13.       i++;
  14.    }
  15.    getURL("event: setsong " + my,"");
  16. }
  17.